home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / s / startup-sequence < prev   
Text File  |  1990-01-19  |  2KB  |  83 lines

  1. BindDrivers
  2. addbuffers df0: 10
  3. echo ""
  4. echo "                           Aztec C for the Amiga"
  5. echo "                               Version 5.0a"
  6. echo "                                  1/9/89"
  7. echo ""
  8. path df0:system
  9. stack 8000
  10. FAILAT 25
  11. echo ""
  12. echo "Aztec C for the Amiga - Installation Script"
  13. echo "Version 5.0a"
  14. echo ""
  15. ask "Install to hard disk?"
  16. IF WARN
  17.     echo "    You should not boot with the Aztec distribution"
  18.     echo "    diskette if you wish to install the package to"
  19.     echo "    a hard drive.  Please boot your system as you"
  20.     echo "    normally do, enter the CLI (if not already there),"
  21.     echo "    and type:"
  22.     echo ""
  23.     echo "        execute df0:install"
  24.     echo ""
  25.     echo "    Then follow the prompts to install your Aztec C"
  26.     echo "    package to your hard disk."
  27.     skip DONE
  28. ENDIF
  29. ask "Do you wish to read the 'read.me' file?"
  30. IF WARN
  31.     df0:c/more df0:read.me
  32. ENDIF
  33. echo ""
  34. echo "NOTE: Two blank floppy disks are required for this"
  35. echo "installation (these disks need not be formatted)."
  36. echo ""
  37. ask "Is your second floppy drive called df1:?"
  38. IF WARN
  39.     echo "Insert a blank disk in drive df1:"
  40.     echo "then press <enter> to continue"
  41.     echo "WARNING - the contents of this disk WILL BE DESTROYED!"
  42.     diskcopy >NIL: FROM df0: to df1:
  43.     copy df1:s/floppy_start df1:s/startup-sequence
  44.     echo "Please insert the second blank disk in drive df1:"
  45.     echo "then press <enter> to continue"
  46.     echo "WARNING - the contents of this disk WILL BE DESTROYED!"
  47.     format >NIL: DRIVE df1: NAME az2
  48.     MakeDir df1:bin
  49.     MakeDir df1:lib
  50. ELSE
  51.     echo "Insert a blank disk in drive df2:"
  52.     echo "then press <enter> to continue"
  53.     echo "WARNING - the contents of this disk WILL BE DESTROYED!"
  54.     diskcopy >NIL: FROM df0: to df2:
  55.     copy df2:s/floppy_start df2:s/startup-sequence
  56.     echo "Please insert the second blank disk in drive df2:"
  57.     echo "then press <enter> to continue"
  58.     echo "WARNING - the contents of this disk WILL BE DESTROYED!"
  59.     format >NIL: DRIVE df2: NAME az2
  60.     MakeDir df2:bin
  61.     MakeDir df2:lib
  62. ENDIF
  63. echo ""
  64. df0:floppyinst
  65. if ERROR
  66.     echo "Floppy drive installation aborted!"
  67. else
  68.     echo "Installation complete!"
  69.     echo ""
  70.     echo "You should now re-boot your machine with the new"
  71.     echo "disk 1 in your first floppy drive, and the new disk 2"
  72.     echo "in your second drive.  When the system has completed"
  73.     echo "booting, type:"
  74.     echo ""
  75.     echo "    cd az2:"
  76.     echo ""
  77.     echo "and you'll be ready to go!"
  78.     echo ""
  79.     echo "Thanks for choosing Aztec C!!"
  80.  
  81. LAB DONE
  82.  
  83.